-- Service release control 
-- Importer released the service and the Exporter has to handle this.
-- Importer released the service 
-- Importer released the service and the Exporter has to handle this
(obj : object;  -- importer 
 type : integer) -- type of importer (0..failure, 1..setup, 2..processing)
is
do
	if obj=object then
		if typ=0 then
			-- add your code here
		end;	
		if typ=1 then
			-- add your code here
		end;	
		if typ=2 then
			-- add your code here
		end;
	else
		-- add your code here
	end;
end;
/*object:Enter the name of the station that imports the service here.
*/